Skip to main content

primitive

Members

A primitive type, used to represent a primitive value stored within the file system. It is one (not all) of the following types:


Subtype A

It is of the type string.


Subtype B

It is of the type number.


Subtype C

It is of the type boolean.


Subtype D

It is an array whose values are of the type primitive.


Subtype E


[primitive]

It is of the type primitive.

Luau Type

This is the luau type for primitive. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

type primitive = string | number | boolean | { primitive } | {
[primitive]: primitive,
}